#myTable_wrapper {
    width: 100%;
}

.dtr-control::before {
    border-left: 10px solid rgb(26, 115, 232) !important;
}

.dtr-expanded td::before {
    border-top: 10px solid rgb(255, 0, 0) !important;
    border-left: none;
}

.dtr-expanded>.dtr-control::before {

    border-left: 5px solid transparent !important;
}

#myDatatable_wrapper .dt-layout-cell {
    border: 1px solid #ccd1ef;
    border-radius: 10px;
}

button a {
    fill: black;

}

tbody {
    color: black;
    position: relative;
}

.section-content button {
    background: none;
}

@media (width < 420px) {
    #datatable-container {
        width: 340px;
    }
}

@media (width < 320px) {
    #datatable-container {
        width: 290px;
    }
}

td[tabindex="0"] {
    text-align: start !important;
}

.tooltip {
    width: 40%;
    text-align: center;
    margin: auto;
    border-radius: 5px;
    right: 22px;
    border: 1px solid gray;
}

#datatable-container .section-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    /* grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); */
    justify-content: space-between;
}
#datatable-container .section-content .filters__column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    justify-content: space-between;
}

tbody tr td {
    overflow: hidden;
    /* display: -webkit-box; */
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.control,
.k {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

#search-bar {
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.blurred {
    filter: blur(5px);
    transition: filter 0.3s ease;
}

#datatable-container {
    position: relative;
    z-index: 1;
    /* El datatable es la base */
}

#blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    /* Aplica desenfoque */
    background: rgba(255, 255, 255, 0.4);
    /* Capa semitransparente */
    z-index: 2;
    /* Está entre el datatable y el search-bar */
}

#search-bar {
    position: absolute;
    z-index: 3;
    /* Asegura que esté sobre el desenfoque */
    background: white;
    /* Evita el desenfoque */
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.301);
}